00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef PSPINTRMAN_KERNEL_H
00014 #define PSPINTRMAN_KERNEL_H
00015
00016 #include <pspkerneltypes.h>
00017
00024
00025 #ifdef __cplusplus
00026 extern "C" {
00027 #endif
00028
00040 int sceKernelRegisterIntrHandler(int intno, int no, void *handler, void *arg1, void *arg2);
00041
00049 int sceKernelEnableIntr(int intno);
00050
00058 int sceKernelDisableIntr(int intno);
00059
00065 int sceKernelIsIntrContext(void);
00066
00067 #ifdef __cplusplus
00068 }
00069 #endif
00070
00073 #endif